home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000420_news@newsmaster….columbia.edu _Sat Sep 27 00:48:48 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id AAA01358
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 27 Sep 1997 00:48:47 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id AAA14056
  7.     for kermit.misc@watsun; Sat, 27 Sep 1997 00:48:47 -0400 (EDT)
  8. Path: news.columbia.edu!panix!howland.erols.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  9. From: jrd@cc.usu.edu (Joe Doupnik)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Kermit via PPP under DOS?
  12. Message-ID: <k1c7kBQEU5Wv@cc.usu.edu>
  13. Date: 26 Sep 97 22:11:11 MDT
  14. Organization: Utah State University
  15. Lines: 22
  16. Xref: news.columbia.edu comp.protocols.kermit.misc:7744
  17.  
  18.     Let's go through the PPP driver situation again when the driver
  19. presents an Ethernet Packet Driver interface.
  20.     PPP is a point to point link involving only two stations: this
  21. end and the other end. It is not a broadcast medium, and thus ARP does not
  22. apply. Frames do not use MAC addressing.
  23.     Ethernet is a broadcast medium. ARP is REQUIRED to identify one
  24. of many possible stations on the wire. Also many stations can be in the
  25. same IP subnet and thus reachable by first soliciting their hardware
  26. (Ethernet MAC) address via ARP and then addressing frames to that address.
  27. All frames require MAC addressing. ARPing for one's own IP address must
  28. produce NO RESPONSE.
  29.     A PPP driver presenting an Ethernet interface is indistinguishable
  30. from real Ethernet at the protocol stack level (i.e., by Kermit). That
  31. driver must then FULLY simulate a broadcast medium of many stations, yet
  32. they often fail completely to do that job. Half measures are failures too.
  33.         SLIP is a point to point link. It is not an Ethernet-style
  34. interface. Kermit knows about SLIP and treats it as a point to point
  35. comms pathway without MAC addresses. Use SLIP interfaces. There is no such
  36. thing as a standardized PPP interface, alas, and thus Kermit does not have
  37. code to deal with the many PPP interfaces out there. Use SLIP interfaces.
  38.     Avoid badly designed PPP drivers, please.
  39.     Joe D.